home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / xemacs / xemacs-1.006 / xemacs-1 / lib / xemacs-19.13 / lisp / tooltalk / Makefile next >
Encoding:
Makefile  |  1994-09-20  |  342 b   |  19 lines

  1. # @(#)Makefile 1.4 94/04/19
  2.  
  3. EMACS=../../src/xemacs
  4.  
  5. TOOLTALK.el  = tooltalk-macros.el tooltalk-init.el tooltalk-util.el
  6. TOOLTALK.elc = $(TOOLTALK.el:.el=.elc)
  7.  
  8. all: $(TOOLTALK.elc)
  9.  
  10. .INIT: tooltalk-load.el $(TOOLTALK.el) 
  11.  
  12. .SUFFIXES: .elc .el
  13.  
  14. .el.elc:
  15.     $(EMACS) -batch -q -f batch-byte-compile $(@:.elc=.el)
  16.  
  17. clean: 
  18.     $(RM) $(TOOLTALK.elc)
  19.